home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / library / rqtlsusr.lha / ReqTools / RexxReqTools / Examples / TTXARexx.lha / SaveFileAs.ttx < prev    next >
Text File  |  1993-10-21  |  513b  |  25 lines

  1. /* SaveFileAs.ttx 1.1 (27.07.93) */
  2.  
  3. OPTIONS RESULTS
  4.  
  5. GetFilePath
  6. DirName = RESULT
  7. Index = LastPos( '/', DirName )
  8.  
  9. IF Index = 0 THEN
  10.   Index = Index( DirName, ":" )
  11.  
  12. IF Index ~= 0 THEN DO
  13.   FileName = SubStr( DirName, Index + 1 )
  14.   DirName = Left( DirName, Index )
  15. END
  16.  
  17. FileName = rtFileRequest( DirName, FileName, "Select file to save", "_Save", "RTFI_Flags=FREQF_PatGad|FREQF_Save RT_PubScrName=TURBOTEXT" )
  18.  
  19. IF rtResult = 1 THEN DO
  20.   SaveFileAs NAME FileName
  21.   SetFilePath FileName
  22. END
  23.  
  24. CALL rtFreeFileBuffer
  25.